home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / H_FOLDER / HEADER.H < prev    next >
Text File  |  1990-03-02  |  761b  |  21 lines

  1. /*
  2.  * Interpreter code file header - this is written at the start of
  3.  *  an icode file after the start-up program.
  4.  */
  5. struct header {
  6.    word hsize;            /* size of interpreter code */
  7.    word trace;            /* initial value of &trace */
  8.    word records;        /* location of record blocks */
  9.    word ftab;            /* location of record/field table */
  10.    word fnames;            /* location of names of fields */
  11.    word globals;        /* location of global variables */
  12.    word gnames;            /* location of names of globals */
  13.    word statics;        /* location of static variables */
  14.    word strcons;        /* location of identifier table */
  15.    word filenms;        /* location of ipc/file name table */
  16.    word linenums;        /* location of ipc/line number table */
  17.    word config[16];        /* icode version */
  18.  
  19.  
  20.    };
  21.